From ae2d9de2fb90b4843d9f4d4904c1de158cf84bae Mon Sep 17 00:00:00 2001 From: Andrew Garrett Date: Wed, 18 Feb 2009 05:19:55 +0000 Subject: [PATCH] element->tags --- includes/EditPage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index 1f311c19f9..d896026df5 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -1344,7 +1344,7 @@ class EditPage { $commentsubject = ''; if ( !$wgRequest->getBool( 'nosummary' ) ) { $commentsubject = - Xml::element( 'label', array( 'for' => 'wpSummary' ), $subject ); + Xml::tags( 'label', array( 'for' => 'wpSummary' ), $subject ); $commentsubject = Xml::tags( 'span', array( 'id' => 'wpSummaryLabel' ), $commentsubject ); $commentsubject .= ' '; @@ -1365,7 +1365,7 @@ class EditPage { } else { $commentsubject = ''; - $editsummary = Xml::element( 'label', array( 'for' => 'wpSummary' ), $summary ); + $editsummary = Xml::tags( 'label', array( 'for' => 'wpSummary' ), $summary ); $editsummary = Xml::tags( 'span', array( 'id' => 'wpSummaryLabel' ), $editsummary ); -- 2.20.1